home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / F_J / ICR2_12.ZIP / RESTALL.BAT < prev    next >
DOS Batch File  |  1996-06-21  |  578b  |  30 lines

  1. @echo off
  2. if .%1. == .. goto nospec
  3. if not exist %1\NUL goto nodir
  4.  
  5. rem
  6. rem Restore the current championship season
  7. rem
  8.  
  9. if exist %1\season.bin copy %1\season.bin .
  10.  
  11. rem
  12. rem For each track, restore that track's data
  13. rem
  14.  
  15. cd tracks
  16. for %%t in (austral clevland detroit elkhart laguna longbch michigan midohio) do call ..\resttrk %1 %%t
  17. for %%t in (mlwaukee nazareth nwenglnd phoenix portland toronto vancouvr) do call ..\resttrk %1 %%t
  18. cd ..
  19.  
  20. goto end
  21.  
  22. :nospec
  23. echo usage: restall [directory]
  24. goto end
  25.  
  26. :nodir
  27. echo The directory %1 must exist.
  28.  
  29. :end
  30.